home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / include / gemks.h < prev    next >
C/C++ Source or Header  |  1993-04-28  |  803b  |  36 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEMkeysink
  4. //
  5. //  A GEMkeysink is an event handler that acts when a key is pressed.
  6. //
  7. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  8. //  This file is part of the gem++ library.
  9. //  You are free to copy and modify these sources, provided you acknowledge
  10. //  the origin by retaining this notice, and adhere to the conditions
  11. //  described in the file COPYING.LIB.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14.  
  15. #ifndef GEMks_h
  16. #define GEMks_h
  17.  
  18. #include <gemfb.h>
  19.  
  20. class GEMactivity;
  21. class GEMevent;
  22.  
  23. class GEMkeysink
  24. {
  25. public:
  26.     GEMkeysink(GEMactivity& in);
  27.     virtual ~GEMkeysink();
  28.  
  29.     virtual GEMfeedback Consume(const GEMevent&)=0;
  30.  
  31. private:
  32.     GEMactivity& act;
  33. };
  34.  
  35. #endif
  36.